home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1996 April / Software of the Month Club 1996 April.iso / pc / os2 / psutils / src / fixpsd~1.pl < prev    next >
Text File  |  1996-02-21  |  630b  |  26 lines

  1. @PERL@
  2. # fixpsditps: fix psdit output for use in psutils
  3. #
  4. # Copyright (C) Angus J. C. Duggan 1991-1995
  5. # See file LICENSE for details.
  6.  
  7. $nesting = 0;
  8.  
  9. while (<>) {
  10.    if (/^\/p{pop showpage pagesave restore \/pagesave save def}def$/) {
  11.       print "/p{pop showpage pagesave restore}def\n";
  12.    } elsif (/^%%BeginDocument/ || /^%%BeginBinary/ || /^%%BeginFile/ ) {
  13.       print $_;
  14.       $nesting++;
  15.    } elsif (/^%%EndDocument/ || /^%%EndBinary/ || /^%%EndFile/) {
  16.       print $_;
  17.       $nesting--;
  18.    } elsif (/^%%Page:/ && $nesting == 0) {
  19.       print $_;
  20.       print "xi\n";
  21.    } elsif (! /^xi$/) {
  22.       print $_;
  23.    }
  24. }
  25. @END@
  26.